package com.jty.dragsigndemo.bean;
import java.util.List;
@author TaoYuan
@time 2017/3/31 0031
@desc
/
public class TestBean {
resultMsg : 该文档未被修改,签名有效
certResultList : [{”certValidDate”:”2、该证书的拥有者:赵大”,”signatureDate”:”1、签章时间:2016-11-15-18-09-18”,”certIssuer”:”4、该证书的有效期:2016-11-15~2026-11-15”,”certOwner”:”3、该证书的颁发者:TaoYuan”},{”certValidDate”:”2、该证书的拥有者:钱二”,”signatureDate”:”1、签章时间:2017-03-29-14-18-19”,”certIssuer”:”4、该证书的有效期:2017-03-21~2027-03-21”,”certOwner”:”3、该证书的颁发者:TaoYuan”},{”certValidDate”:”2、该证书的拥有者:张三”,”signatureDate”:”1、签章时间:2017-03-29-14-18-41”,”certIssuer”:”4、该证书的有效期:2017-03-21~2027-03-21”,”certOwner”:”3、该证书的颁发者:TaoYuan”}]
fileName : moSign_192.168.4.87_2.pdf
/
private String resultMsg;
private String fileName;
private List<CertResultListBean> certResultList;
public String getResultMsg() {
return resultMsg;
}
public void setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public List<CertResultListBean> getCertResultList() {
return certResultList;
}
public void setCertResultList(List<CertResultListBean> certResultList) {
this.certResultList = certResultList;
}
public static class CertResultListBean {
certValidDate : 2、该证书的拥有者:赵大
signatureDate : 1、签章时间:2016-11-15-18-09-18
certIssuer : 4、该证书的有效期:2016-11-15~2026-11-15
certOwner : 3、该证书的颁发者:TaoYuan
/
private String certValidDate;
private String signatureDate;
private String certIssuer;
private String certOwner;
public String getCertValidDate() {
return certValidDate;
}
public void setCertValidDate(String certValidDate) {
this.certValidDate = certValidDate;
}
public String getSignatureDate() {
return signatureDate;
}
public void setSignatureDate(String signatureDate) {
this.signatureDate = signatureDate;
}
public String getCertIssuer() {
return certIssuer;
}
public void setCertIssuer(String certIssuer) {
this.certIssuer = certIssuer;
}
public String getCertOwner() {
return certOwner;
}
public void setCertOwner(String certOwner) {
this.certOwner = certOwner;
}
}
}